home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-09-06 | 2.6 KB | 109 lines | [TEXT/CWIE] |
- // DModelessBarsData -- data class for Everything
-
- #pragma once
-
- #include "AMSignaler.h"
-
-
- const long idBars3 = 'Bar4';
- const long idStandard8 = 'Sta8';
- const long idGraphic6 = 'Gra6';
- const long idSlider3 = 'Sli3';
- const long idTickMarks3 = 'Tic3';
- const long idNonDirectional3 = 'Non3';
- const long idLittleArrows3 = 'Lit3';
- const long idSpinner3 = 'Spi3';
- const long idVolumeControl3 = 'Vol3';
- const long idJimSSlider3 = 'Jim3';
- const long idStandard9 = 'Sta9';
- const long idIndeterminate3 = 'Ind3';
- const long idChasingArrows3 = 'Cha3';
- const long idRectangle3 = 'Rec3';
- const long idRoundRect3 = 'Rou4';
- const long idBarberPole3 = 'Bar5';
- const long idRoundBarber3 = 'Rou5';
-
- class AMEngine;
-
- //----------
- class DModelessBarsData : public AMSignaler {
- public:
- DModelessBarsData ();
- virtual ~DModelessBarsData ();
-
- public:
- void ReadFromFile (AMEngine* engine);
- void WriteToFile (AMEngine* engine);
-
- public:
- UInt16 GetBars3 () const;
- void SetBars3 (UInt16 inValue);
-
- SInt16 GetStandard8 () const;
- void SetStandard8 (SInt16 inValue);
-
- SInt16 GetGraphic6 () const;
- void SetGraphic6 (SInt16 inValue);
-
- SInt16 GetSlider3 () const;
- void SetSlider3 (SInt16 inValue);
-
- SInt16 GetTickMarks3 () const;
- void SetTickMarks3 (SInt16 inValue);
-
- SInt16 GetNonDirectional3 () const;
- void SetNonDirectional3 (SInt16 inValue);
-
- SInt16 GetLittleArrows3 () const;
- void SetLittleArrows3 (SInt16 inValue);
-
- SInt16 GetSpinner3 () const;
- void SetSpinner3 (SInt16 inValue);
-
- SInt16 GetVolumeControl3 () const;
- void SetVolumeControl3 (SInt16 inValue);
-
- SInt16 GetJimSSlider3 () const;
- void SetJimSSlider3 (SInt16 inValue);
-
- SInt16 GetStandard9 () const;
- void SetStandard9 (SInt16 inValue);
-
- SInt16 GetIndeterminate3 () const;
- void SetIndeterminate3 (SInt16 inValue);
-
- SInt16 GetChasingArrows3 () const;
- void SetChasingArrows3 (SInt16 inValue);
-
- SInt16 GetRectangle3 () const;
- void SetRectangle3 (SInt16 inValue);
-
- SInt16 GetRoundRect3 () const;
- void SetRoundRect3 (SInt16 inValue);
-
- SInt16 GetBarberPole3 () const;
- void SetBarberPole3 (SInt16 inValue);
-
- SInt16 GetRoundBarber3 () const;
- void SetRoundBarber3 (SInt16 inValue);
-
- protected:
- UInt16 mBars3;
- SInt16 mStandard8;
- SInt16 mGraphic6;
- SInt16 mSlider3;
- SInt16 mTickMarks3;
- SInt16 mNonDirectional3;
- SInt16 mLittleArrows3;
- SInt16 mSpinner3;
- SInt16 mVolumeControl3;
- SInt16 mJimSSlider3;
- SInt16 mStandard9;
- SInt16 mIndeterminate3;
- SInt16 mChasingArrows3;
- SInt16 mRectangle3;
- SInt16 mRoundRect3;
- SInt16 mBarberPole3;
- SInt16 mRoundBarber3;
- };
-